body{
  background-color: black;
  margin:0px;
}

img.bild{
  width: 100%;
  height: auto;
  display: block;
}

.slider {
	width: 1080px;
	height: 1920px;
	overflow: hidden;
	position: relative;
	margin: auto;
}
 .slides {
    display: flex;
    width: 200%;
    height: 100%;
    animation: slide 26s infinite;
  }
  .slide {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
  }
  @keyframes slide {
    0%, 38.46% {
      transform: translateX(0%);
    }
    42.31%, 50% {
      transform: translateX(-50%);
    }
    88.46%, 100% {
      transform: translateX(-50%);
    }
    92.31%, 100% {
      transform: translateX(0%);
    }
  }

